Computers & Technology
epub, mobi |eng | 2012-12-06 | Author:Bill Sheldon & Billy Hollis & Rob Windsor & David McCarter & Gaston Hillar & Todd Herman

SQL Server .NET Data Provider The SQL Server .NET data provider uses Tabular Data Stream (TDS) to communicate with the SQL Server. This offers a great performance increase, as TDS ...
( Category: Visual Basic March 26,2014 )
epub |eng | 2013-02-11 | Author:Reza Alirezaei & Brendon Schwartz & Matt Ranlett & Scot Hillier & Brian Wilson & Jeff Fried & Paul Swider

As you added the controls to the page, you probably noticed the use of the HTML comments and that each snippet is self-contained. This means that if the control required ...
( Category: C & C++ Windows Programming March 26,2014 )
epub, pdf |eng | 2012-11-29 | Author:Matthew MacDonald [MacDonald, Matthew]

</Border> </ControlTemplate> Technically, you could change the template of a user control. In fact, you could move all your markup into the template, with only slight readjusting. But there’s really ...
( Category: Software Development March 26,2014 )
epub |eng | 2011-12-05 | Author:Matthew MacDonald [MacDonald, Matthew]

Figure 18-4. A color picker custom control with two different templates Documenting Template Parts There’s one last refinement that you should make to the previous example. Good design guidelines suggest ...
( Category: Software Development March 26,2014 )
epub |eng | 2012-01-25 | Author:Matthew Macdonald [Macdonald, Matthew]

With these details in mind, you're ready to begin creating your first 3D scene. Adding Assembly References Silverlight's 3D support is divided among a handful of assemblies, but eventually you'll ...
( Category: Computer Science March 26,2014 )
epub, pdf |eng | 2013-03-27 | Author:Badrinarayanan Lakshmiraghavan [Lakshmiraghavan, Badrinarayanan]

if (headers.Authorization != null && headers.Authorization.Scheme.Equals("Saml")) { string token = encoding.GetString( Convert.FromBase64String(headers.Authorization.Parameter)); // Code to use the token goes here } return await base.SendAsync(request, cancellationToken); } } It is possible ...
( Category: Software Development March 26,2014 )
epub, pdf |eng | 2011-05-14 | Author:Don Jones [Jones, Don]

The WMI way: invoking WMI methods 149 __DERIVATION : {} __SERVER : __NAMESPACE : __PATH : ReturnValue : 0 __GENUS : 2 __CLASS : __PARAMETERS __SUPERCLASS : __DYNASTY : __PARAMETERS ...
( Category: C & C++ Windows Programming March 26,2014 )
epub |eng | 2012-12-13 | Author:Mohammad Rahman

/* Replace _items with the temporary array which currently holding * existing contents of the _items array and empty items * for the expanded cells. */ this._items = destinationArray; } ...
( Category: Object-Oriented Design March 26,2014 )
epub, pdf |eng | 2013-02-28 | Author:Brent Schooley [Schooley, Brent]

Weaknesses of Digital Prototyping There are some weaknesses with digital prototyping that you have to bear in mind. First and foremost, the level of detail you can achieve creating with ...
( Category: Graphics & Design March 26,2014 )
epub, mobi |eng | 2012-03-25 | Author:Stephen Prata

Again, destructors are called in the following situations (refer to Figure 12.4): • If an object is an automatic variable, the object’s destructor is called when the program exits the ...
( Category: Object-Oriented Design March 26,2014 )
epub, pdf |eng | | Author:Jon Skeet [Unknown]

We’ve looked at just a few of the many extension methods available in Enumerable, but hopefully you can appreciate how neatly they can be chained together. In the next chapter ...
( Category: C & C++ Windows Programming March 26,2014 )
epub |eng | | Author:Joseph Albahari & Ben Albahari

Throwing Exceptions Exceptions can be thrown either by the runtime or in user code. Here, Display throws a System.ArgumentNullException: static void Display (string name) { if (name == null) throw ...
( Category: Software Development March 26,2014 )
epub, pdf |eng | | Author:John Ciliberti

Listing 8-4. Using WhenAll with an IEnumerible public async Task<ActionResult> CallTenServicesAsync() { List<Task<byte[]>> dataTasks = new List<Task<byte[]>>(); for (int i = 0; i < 10; i++) { using (WebClient webClient ...
( Category: Programming March 26,2014 )
epub, pdf |eng | 2011-05-27 | Author:Raffaele Garofalo

using System.ComponentModel; namespace APRESS.TimeTracking.DataLayer { public sealed class Person : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public void OnPropertyChanged(string propertyName) { PropertyChangedEventHandler handler = PropertyChanged; if (handler != null) { ...
( Category: Computer Science March 26,2014 )
epub |eng | 2012-09-13 | Author:Jess Chadwick, Todd Snyder & Hrusikesh Panda [Jess Chadwick, Todd Snyder, and Hrusikesh Panda]

Donut Hole Caching Donut hole caching is the inverse of donut caching: while the donut caching technique caches the entire page, leaving out only a few small sections, donut hole ...
( Category: NET March 26,2014 )